home *** CD-ROM | disk | FTP | other *** search
- -- background: 2810 from stack: in.1
- -- bmap block id: 4160
- -- flags: 0000
- -- background id: 0
- -- name: Photo Album Background
-
-
- -- part 7 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=420 top=22 right=104 bottom=512
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Control Button
- ----- HyperTalk script -----
- on mouseUp
- global cardname
- get the name of this card
- put It into cardname
- push card
- visual effect iris open
- go to first card
- end mouseUp
-
-
-
- -- part 9 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=0 top=123 right=269 bottom=512
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Next Card
- ----- HyperTalk script -----
- on mouseUp
- global menuhid
- put 1 into menuhid
- hide menubar
- get the number of last card
- put it into nextolast
- subtract 1 from nextolast
- get the number of this card
- if it is nextolast then
- visual effect dissolve
- go to first card
- else
- visual effect dissolve
- go to next card
- end if
- end mouseUp
-
-
- -- part 10 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=1 top=284 right=342 bottom=511
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Menu Toggle
- ----- HyperTalk script -----
- on mouseUp
- global menuhid
- if menuhid is 0 then
- show menubar
- put 1 into menuhid
- else
- hide menubar
- put 0 into menuhid
- end if
- end mouseUp
-